home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 582 b | 32 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class DEMO2
-
- creation make
-
- feature
-
- make is
- local
- std_rand: MIN_STAND;
- count: INTEGER;
- do
- io.put_string("Using the MIN_STAND random number generator.%N%
- %How many numbers ? ");
- io.read_integer;
- count := io.last_integer;
- from
- !!std_rand.make;
- until
- count = 0
- loop
- std_rand.next;
- io.put_real(std_rand.last_real);
- count := count - 1;
- io.put_string("%N");
- end;
- end;
-
- end -- DEMO2
-